/-app
/-docs
/-files
/-imports
/-persistence
/-typings
errors.js
functions.ts
index.html
try.js
x
120
        <div
121
           style="float: left; width: 45%; padding: 3em;">
122
          <button data-bind="click: addClick"> add </button>
123
          <button data-bind="click: deleteClick"> delete </button>
124
        </div>
125
​
126
        <div
127
           style="float: right; width: 45%; padding: 3em;">
128
          Export files<br>
129
          <button data-bind="click: exportAllHTML"> copy of everything as HTML </button><br>
130
          <button data-bind="click: exportAllZIP"> copy of everything as ZIP </button><br>
131
          <button data-bind="click: exportCurrentFile"> currentFile </button><br>
132
          <br>
133
​
134
          Import files<br>
135
          <button data-bind="click: importText"> text file import </button><br>
136
          <button data-bind="click: importBase64"> binary file import (base64) </button><br>
137
          <button data-bind="click: importZIP"> import a whole ZIP archive </button><br>
138
​
139
        </div>
140
​
141
      </div>
142
​
143
      
144
      
145
    </div>
146
​
147
  </div>
148
</div>
149
​
150
<div class=teapo-status-bar
151
   data-bind="loadRaw: docHostRegions.status = $element">
152
</div>
153
     
154
​
155
<script data-legit=teapo>try { teapo.app.start(); } catch (err) { alert(err+' '+err.stack); }</script>
156
​
157
​
158
<script data-legit=teapo type="text/javascript" src="https://getfirebug.com/firebug-lite.js">
159
{
160
    overrideConsole: true,
161
    startInNewWindow: false,
162
    startOpened: true
163
}
164
</script>
165
​
166
​
167
</body>
168
</html>
169
​
Updated 2014-10-4 21:10.